home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
cmds
/
oldwish
/
testit_c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1989-07-14
|
246 b
|
21 lines
#include <stdio.h>
char startUp[1024];
main(argc, argv)
int argc;
char *argv[];
{
int status;
status = Whence(startUp, "test");
fprintf(stderr, "%s\n", startUp);
if (status != NULL) {
exit(0);
} else {
exit(1);
}
}